Class ParserViewManagerImpl

All Implemented Interfaces:
IPCObject, ParserViewManager, Process

public class ParserViewManagerImpl extends ProcessImpl implements ParserViewManager
Information provided by the PKI file:

    \class ParserViewManager
    
    \brief ParserViewManager manages and manipulates the parser view.
    
Author:
Auto-generated
  • Constructor Details

  • Method Details

    • addView

      public boolean addView(String viewName)
      Information provided by the PKI file:
      
          \brief Adds a view with the specified name.
          
          \param viewName, the name for the view.
          
          \return bool, true if successful, otherwise false.
          
              
      Specified by:
      addView in interface ParserViewManager
      Parameters:
      viewName - Takes in a parameter of viewName
      Returns:
      boolean Returns a boolean
    • removeView

      public boolean removeView(String viewName)
      Information provided by the PKI file:
      
          \brief Removes the view the specified name.
          
          \param viewName, the name of the view.
          
          \return bool, true if successful, otherwise false.
          
              
      Specified by:
      removeView in interface ParserViewManager
      Parameters:
      viewName - Takes in a parameter of viewName
      Returns:
      boolean Returns a boolean
    • getViewCount

      public int getViewCount()
      Information provided by the PKI file:
      
          \brief Returns the number of views.
          
          \return int, the number of views.
          
              
      Specified by:
      getViewCount in interface ParserViewManager
      Returns:
      int Returns a int
    • getViewAt

      public ParserView getViewAt(int index)
      Information provided by the PKI file:
      
          \brief Returns the view at the specified index.
          
          \param index, the index of the view of interest.
          
          \return ParserView, the ParserView object at the specified index.
          
              
      Specified by:
      getViewAt in interface ParserViewManager
      Parameters:
      index - Takes in a parameter of index
      Returns:
      ParserView Returns a ParserView
    • getView

      public ParserView getView(String name)
      Information provided by the PKI file:
      
          \brief Returns the view with the specified name.
          
          \param name, the name of the view of interest.
          
          \return ParserView, the ParserView object with the specified name.
          
              
      Specified by:
      getView in interface ParserViewManager
      Parameters:
      name - Takes in a parameter of name
      Returns:
      ParserView Returns a ParserView